IW Partner Readiness Resource Guide

Op de site is nu een tool voor Partners te downloaden waarin je informatie kan vinden over beschikbare trainingen voor Sales en Technische rollen bij Partners over het Office Platform. Brief Description This guide features the latest information on IW...(read more)
Posted by admin in Uncategorized - Comments (0)
30 November

Outlook 2007 Gadgets for Windows Sidebar

Het Outlook team heeft een post over een tweetal leuke Vista Gadgets: If you’re a fan of the Outlook 2007 To-Do Bar, but wish your upcoming appointments and tasks could be shown even when Outlook was minimized, I’ve got great news for you, you can do...(read more)
Posted by admin in Uncategorized - Comments (0)
30 November

Windows Live Messenger 9.0 Beta Will Coming Soon

Hahaa,the MSN9.0 will coming soon.Mess.be found out:Windows Live Messenger team has sent out a batch of invites for the limited beta of Windows Live Messenger 9.0:"We've been hard at work building the foundation for Windows Live Messenger 9.0, w...
Posted by admin in Uncategorized - Comments (0)
29 November

TechNet Webcast Audio: Improving Desktop Security and Deployment (Part 6 of 7): Group Policy in Windows Vista (Level 200)

In this session, we examine Group Policy functionality improvements that have been made in the Windows Vista operating system. We describe the new and updated features and how they help alleviate issues that may have been present in previous operating systems. The number of Group Policy settings has increased from approximately 1,700 in Windows Server 2003 with Service Pack 1 (SP1) to approximately 3,000 in Windows Vista and Windows Server 2008, but we look only at the biggest improvements to give you a starting point to utilize the new Group Policy settings. We also introduce Quality of Service (QoS) policies which are available with Windows Vista. Original Broadcast Date: Wednesday, November 28, 2007
Posted by admin in Uncategorized - Comments (0)
28 November

Free Download WLM Lite 8.5

Novastar827 has yet released a new version of his WLM Lite.

Good news,The WLM Lite 8.5 has been released.
Build contains

- WLM 8.5.1302.1018 Core Files
- Adobe Flash ActiveX Control 9.0.64.0 (Winks, Animated Backgrounds)
- Microsoft Tablet PC Components with KB886179 Security Update (Handwriting)
- Microsoft VC++ 2005 SP1 Runtimes

Much more information (features) and build can be found on the download page.
Posted by admin in Uncategorized - Comments (0)
26 November

Microsoft Deployment – Screenshots during the WinPE Phase

Scenario, you are wrapping up your specifications and testing for a Lite-Touch deployment of XP and or Vista and you need to train the staff on what to expect when booting from the CD. How do you get screen shots of the dialog boxes during the WinPE phase?

Here is the simple way of doing this.

  1. Boot a PC that already has a working Windows installation on it with the MDT (Microsoft Deployment Toolkit) boot CD.
  2. Once it starts to boot from the CD plug in a USB storage device so the PNP of WinPE picks it up as a device.
  3. Once you are at the Welcome screen open the minimized DOS window.
  4. Change the drive letter to C:
  5. Browse to C:\windows\system32
  6. Type mspaint.exe and the Paint program will open
  7. Go back to your Welcome Screen and hit the PrintScreen key and paste it into Paint.
  8. Save the image to your USB key.
  9. Repeat this process until you have all of the necessary screen shots.
Posted by admin in Uncategorized - Comments (0)
21 November

Microsoft Deployment 4 and Multiple Deployment Points for LTI

Microsoft Deployment 4 and Multiple Deployment Points for LTI

If you are only using the Lite-Touch deployment scenario, but have many locations and still want to maintain a central point of management this blog will explain a little known feature that is not well documented in the Microsoft Deployment process, herein known as MDT. Please note that this process will also work for BDD 2007. By making these 3 changes you can present your system builders with a dialog that will allow them to select which deployment point they want to use for building their systems.

The first step is to determine your method of replicating your distribution share. Your method may vary based on your environment. This scenario is based on a client that does have SMS 2003 but does not want to create WIM files for deployment of XP as they have made a decision to wait for System Center Configuration Manager and for their formal rollout of Vista sometime in the future. First I set up the package; this is similar to the one at the MYITForum wiki on how to distribute a Resource Root using SMS.

The only difference is that I copy the entire share as I am deploying XP using the raw CD.

This process will require editing of the existing MDT scripts, the creation of a LocationServer.XML file and finally adding an extra directory to your WinPE boot media.

The first task is to create the LocationServer.XML file. Under your distribution share create a directory. This directory can be named anything you want it to be. I will be naming mine "Additional" because this is the folder where I will put anything that I want included on the boot media. Once you have created the directory, create a file named LocationServer.XML and open it with notepad. Copy the syntax below into the file. You simply then need to modify the code block to match your environment.

<?xml version="1.0" encoding="utf-8" ?>

 <!--
    The wizard will select a site if the URL in <QueryDefault> returns an XML like:
        <?xml version="1.0" encoding="utf-8" ?>
        <DefaultSites>
            <DefaultSite>8</DefaultSite>
        </DefaultSites>
    
  Example:
      <QueryDefault><![CDATA[http://main.contoso.com/DefaultSite.asp]]></QueryDefault>

    -->
<servers>
 <QueryDefault></QueryDefault>
 <server>
  <serverid>1</serverid>
  <friendlyname>USA</friendlyname>
  <server1>\\usa-wds-01.usa.contoso.com\Distribution$</server1>
 </server>
 <server>
  <serverid>2</serverid>
  <friendlyname>Asia</friendlyname>
  <server2>\\jpn-wds-01.asia.contoso.com\Distribution$</server2>
 </server>
 <server>
  <serverid>3</serverid>
  <friendlyname>Europe</friendlyname>
  <server3>\\eu-wds-01.europe.contoso.com\Distribution$</server3>
 </server>
 <server>
</servers>

The next step is to edit the appropriate script files. Browse to your scripts directory on your distribution share. Make copies of the following 2 scripts, DeployWiz_Initialization.VBS and DeployWiz_Validation.VBS.

Open DeployWiz_Validation.VBS and search for "Flush the value to variables.dat, before we continue", right after this section paste the code below and save the file. The reason this is necessary is that once the LocationServers.XML is the wizard does *not* import in any updated customsettings.ini from the selected regional server, so if you want to import the settings, you'll need to re-run ZTIGather.wsf after the wizard page. This bit of code does this for you.

' Process full rules

 sCmd = "wscript.exe """ & oUtility.ScriptDir & "\ZTIGather.wsf"""
 oItem = oSHell.Run(sCmd, , true)

Open DeployWiz_Initialization.VBS and search for "Function InitializeDeployRoot", comment out the following line:

Set oXMLSiteData = oUtility.CreateXMLDOMObjectEx( property("DeployRoot") & "\control\LocationServer.xml" )

And paste the following under that line:

Set oXMLSiteData = oUtility.CreateXMLDOMObjectEx( "x:\LocationServer.xml" )

Save the file.

Three steps to go and you are ready to test.

  1. Go to the MDT workbench and open the properties on your Deployment Point.
  2. On the Rules tab, click the "Edit Bootstrap.ini" button. Delete the [default] DeployRoot line. The BootStrap.ini file must *not* have a [default] DeployRoot value defined
  3. Go to the Windows PE tab and add the directory you created earlier for the LocationServer.XML file to the "Extra Directory to add" dialog box.
  4. Click ok and then right click on your deployment point and select update.

Burn your CD from the newly created ISO and you should be all set.

Thanks to Glenn Fincher of Xtreme Consulting for a portion of this information.

Posted by admin in Uncategorized - Comments (0)
21 November

By: carl

i have the Voda’s USB E220 3G modem then the light is light bule all the time, still dont get boradband speed. i get about 5-10 kps downloading if i ping a website in cmd it avrage 1500 ms, if im lucky i might get maybe 1-2 hrs good speed per day,tbh for the money i pay it not good… , downloading updates trying to now 3.65kps… going to be here all day. ive tryed, on my pc and laptop but dosent seem to make any diffrence, is any one having the same problem? like geting 1 hr or to good internet per day ?

Posted by admin in Uncategorized - Comments (0)
20 November

Windows SteadyState 2.5 Beta

Brief Description The Windows SteadyState 2.5 Beta supporting Windows Vista is now available for testing. Whether you manage computers in a school computer lab or an Internet cafe, a library, or even in your home, Windows SteadyState helps make it easy...(read more)
Posted by admin in Uncategorized - Comments (0)
17 November

Duet Implementation Best Practices White Paper

Sinds twee dagen als download beschikbaar: Brief Description White paper covering best practices for Duet Overview Duet™ is the result of a groundbreaking collaboration between SAP and Microsoft. It is designed to revolutionize how Information Workers...(read more)
Posted by admin in Uncategorized - Comments (0)
17 November